tg-me.com/java_codings/10
Last Update:
6. Program to Accept value of the side of Square and Calculate Area of Square.
import java.util.*;
class AreaOfSquare
{
public static void main(String args[])
{
int side, area;
Scanner sc = new Scanner(System.in);
System.out.println("Enter value of the sides of square");
side = sc.nextInt();
area = side * side;
System.out.println("Area of Square : " + area);
}
}
@java_codings
BY Advance Java π¨βπ»
Warning: Undefined variable $i in /var/www/tg-me/post.php on line 283
Share with your friend now:
tg-me.com/java_codings/10